VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging Namespace / PixelManipulator Class / ReadRowData Methods / ReadRowData(Int32,Byte[],Int32,Int32) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
ReadRowData(Int32,Byte[],Int32,Int32) Method (PixelManipulator)
In This Topic
Reads the data of specified row.
Syntax
'Declaration

Public Overloads Sub ReadRowData( _
ByVal row
Row index.
As System.Int32, _
ByVal rowData
The buffer to read data into.
() As Byte, _
ByVal offset
The starting point in the buffer at which to begin reading into the buffer.
As System.Int32, _
ByVal length
Length of data to read.
As System.Int32 _
)
public void ReadRowData(
System.Int32 row,
byte[] rowData,
System.Int32 offset,
System.Int32 length
)

Parameters

row
Row index.
rowData
The buffer to read data into.
offset
The starting point in the buffer at which to begin reading into the buffer.
length
Length of data to read.
Exceptions
ExceptionDescription
Thrown if row is less than 0 or row is more or equal than the image height.
Thrown if rowData is null.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also